home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Win2K Flash Taskbar 2.xpl < prev    next >
Text File  |  2001-12-30  |  1KB  |  44 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="2"
  3. "COUNT"="1"
  4. "UIPATH"="Appearance\Taskbar"
  5. "NAME"="Flash Taskbar Options #2"
  6. "OSVERSION"="0001111"
  7. "VERSION"="1.16"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="# of Flashes"
  10. "DESCRIPTION 1"="A non-focused window undergoing update, flashes 3 times on the taskbar until clicked. To change the number of flashes, enter another number such as "5" [no quotes]."
  11. "DESCRIPTION 2"="Entering a value of "0" [no quotes] will leave the taskbar button flashing until clicked."
  12. "DESCRIPTION 3"="NOTICE: This plugin is operational ONLY when the value in the prior plugin 'Flash Taskbar 1' is set to Default [that is the Box must be checked]."
  13. "AUTHOR"="Ojatex@aol.com"
  14. "CONTACTURL"="http://members.aol.com/ojatex/"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"="Tip and settings provided by Pierre Szwarc.
  17. "COMMENT 2"="No WinME bug found by Jayendran JR [jayendran@gmx.net]"
  18.  
  19.  
  20.  
  21. Sub Plugin_Initialize 
  22.    i=RegReadValue("HKCU\Control Panel\Desktop\ForegroundLockTimeout") 'Dwrd=200000=default
  23.    if i=200000 then 
  24.       i=RegReadValue("HKCU\Control Panel\Desktop\ForegroundFlashCount")  'Dwrd=3=default
  25.       SetUIElement 1,i
  26.    else 
  27.       Disable
  28.    end if
  29. End Sub
  30.  
  31. Sub Plugin_CheckData(ElementIndex)
  32. End Sub
  33.  
  34. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  35.  i=GetUIElement(1)
  36.  Call RegWriteValue("HKCU\Control Panel\Desktop\ForegroundFlashCount",i,2)
  37. End Sub
  38.  
  39. Sub Plugin_Terminate 
  40. End Sub
  41.  
  42.  
  43.  
  44.